/* 全てのページに適用 */
html {
    max-width: 1000px;
    font-size: 20px;
    font-family: ゴシック720;
    background-color: rgb(255, 240, 220);
}

* {                          /*全ての要素に対して*/
    box-sizing: border-box;  /*padding と border を要素に含める*/
}

p, td {              /* td:テーブルデータ */
    line-height: 1.7;
}

.nav1{
    font-weight: bold;
    line-height: 0.5;
}
.nav1 ul{
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;        /* 装飾なし */
    display: flex;           /* 横並び */
    justify-content: start;  /* 左寄せ */
    gap: 30px;               /* 間隔   */
}


/*  　健康への道しるべ　  */
.title2{                           /*  　背景写真と色は、個別設定で　                 */  
    font-size: 32px;
    text-align: left;
    padding: 10px 0 150px 30px;    /*  　下方の値が画像の大きさを決める　              */
    background-repeat: no-repeat;  /*  　縦・横のどちらかが余っても、反復しない　       */
    /*background-size: contain;*/  /*  　画像全体を伸縮させて表示するが　              */
                                   /*  photoshop で画像を 1000px にしたので不要に     */
}


.nav2{
    position: absolute;
    left: 20px;
    top: 235px;
    padding: 0 0 0 10px;
    li{
        font-weight: bold;
        list-style: "・";
        line-height: 2.0;
    }
}




a:link{                  /*未訪問のリンク*/
    color:#000000;
    text-decoration: none;
}
a:visited{               /*訪問済のリンク*/
    color:#000000;
    text-decoration: none;
}
a:hover{                 /*マウス中のリンク*/
    color:#2050f0;
    text-decoration: underline;
}
a:active{                /*実行中のリンク*/
    color:#2050f0;
    text-decoration: underline;
}

.gotop{
    text-align: center;
}


/* 個別のスタイル */
/* index.html */
.home{
    color: white;
    background-image: url(../images/home.jpg);
}
.health{
    color: #0101cc;
    background-image: url(../images/health.jpg);
}
.earth{
    color: red;
    background-image: url(../images/earth.jpg);
}
.food{
    color: white;
    background-image: url(../images/food.jpg);
}
.animal{
    color: black;
    background-image: url(../images/animal.jpg);
}

.PW{
    position: absolute;
    top: 400px;
    left: 60px;
    font-size: 20px;
    width: 13em;
    height: 2em;
}

.メール{
    position: absolute;
    top: 600px;
    left: 80px;
    font-size: 22px;
}
  